Page.EndPath Method (console safe)
Ends the current path without any drawing or filling. This method is often using when making path to define clipping.

EndPath()
Parameters
Remarks
Example:
myPage.SaveState()
myPage.Ellipse(300,500,150,150)
myPage.Clip()
myPage.EndPath()
myPage.FillColor = &c0000FF
myPage.Rectangle(100,300,400,400)
myPage.Fill()
myPage.FillColor = &cFFFFFF
myPage.Rectangle(300,300,200,200)
myPage.Rectangle(100,500,200,200)
myPage.Fill()
myPage.RestoreState()
See Also
Page Class